/* TABELA PRINCIPAL */
.tabela-patentes {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

/* CABEÇALHO */
.header th {
    font-size: 13px;
    letter-spacing: 3px;
    color: #00ffcc;
    text-transform: uppercase;
    text-align: left;
    padding: 15px 20px;
    border-bottom: 2px solid #00ffcc;
    background: linear-gradient(90deg, rgba(0, 255, 156, 0.15), transparent);
    font-weight: 900;
    position: relative;
}

.header th:first-child {
    border-top-left-radius: 12px;
}

.header th:last-child {
    border-top-right-radius: 12px;
}

.header th::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00ffcc, transparent);
}

/* CÉLULAS */
td {
    padding: 18px 20px;
    vertical-align: middle;
}

td:first-child {
    border-left: 3px solid #00ffcc;
    border-radius: 10px 0 0 10px;
}

td:last-child {
    border-radius: 0 10px 10px 0;
}